FTP Server - Vsftpd
2014/04/26 |
Install Vsftpd to configure FTP server to transfer files.
|
|
[1] | Install Vsftpd |
root@www:~#
apt-get -y install vsftpd
root@www:~#
vi /etc/vsftpd.conf # line 29: uncomment write_enable=YES # line 97,98: uncomment ( allow ascii mode transfer ) ascii_upload_enable=YES ascii_download_enable=YES # line 120: uncomment ( enable chroot ) chroot_local_user=YES # line 121: uncomment ( enable chroot list ) chroot_list_enable=YES # line 123: uncomment ( enable chroot list ) chroot_list_file=/etc/vsftpd.chroot_list # line 129: uncomment ls_recurse_enable=YES # add at the last line # specify root directory ( if don't specify, users' home directory equals FTP home directory) local_root=public_html
# turn off seccomp filter seccomp_sandbox=NO
root@www:~#
vi /etc/vsftpd.chroot_list # add users you allow to move over their home directory trusty
initctl restart vsftpd vsftpd start/running, process 1284 |